home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / WIN_PRO / WTEK0593.ZIP;1 / CALLBACK.ZIP / MAKEFILE next >
Encoding:
Text File  |  1993-02-10  |  1.0 KB  |  71 lines

  1. .AUTODEPEND
  2.  
  3. #        *Translator Definitions*
  4. CC = bcc +TIMERTST.CFG
  5. TASM = TASM
  6. TLIB = tlib
  7. TLINK = tlink
  8. LIBPATH = C:\BC\LIB;C:\BC\OWL\LIB;C:\BC\CLASSLIB\LIB
  9. INCLUDEPATH = C:\BC\INCLUDE;C:\BC\OWL\INCLUDE;C:\BC\CLASSLIB\INCLUDE
  10.  
  11.  
  12. #        *Implicit Rules*
  13. .c.obj:
  14.   $(CC) -c {$< }
  15.  
  16. .cpp.obj:
  17.   $(CC) -c {$< }
  18.  
  19. #        *List Macros*
  20.  
  21.  
  22. EXE_dependencies =  \
  23.  objcallb.obj \
  24.  otimer.obj \
  25.  timertst.obj \
  26.  timertst.def
  27.  
  28. #        *Explicit Rules*
  29. timertst.exe: timertst.cfg $(EXE_dependencies)
  30.   $(TLINK) /v/x/c/P-/C/Twe/L$(LIBPATH) @&&|
  31. c0wm.obj+
  32. objcallb.obj+
  33. otimer.obj+
  34. timertst.obj
  35. timertst
  36.         # no map file
  37. tclassm.lib+
  38. owlwm.lib+
  39. import.lib+
  40. cwm.lib
  41. timertst.def
  42. |
  43.   RC  timertst.exe
  44.  
  45.  
  46. #        *Individual File Dependencies*
  47. objcallb.obj: timertst.cfg objcallb.cpp 
  48.  
  49. otimer.obj: timertst.cfg otimer.cpp 
  50.  
  51. timertst.obj: timertst.cfg timertst.cpp 
  52.  
  53. #        *Compiler Configuration File*
  54. timertst.cfg: makefile.
  55.   copy &&|
  56. -mm
  57. -2
  58. -f-
  59. -v
  60. -WS
  61. -vi-
  62. -wpro
  63. -weas
  64. -wpre
  65. -I$(INCLUDEPATH)
  66. -L$(LIBPATH)
  67. -DWIN31;STRICT
  68. | timertst.cfg
  69.  
  70.  
  71.